From: Daniel Boles Date: Fri, 29 Jun 2018 18:57:06 +0000 (+0100) Subject: defaultvalue: Fix some very broken indentation X-Git-Tag: archive/raspbian/3.24.39-1+rpi1~1^2~65^2~34^2~20 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=ca4ec52c5403139f2f0c78966e1ad4272153c875;p=gtk%2B3.0.git defaultvalue: Fix some very broken indentation and while here, use the more typical : to separate the type and property --- diff --git a/testsuite/gtk/defaultvalue.c b/testsuite/gtk/defaultvalue.c index 1f73fa5825..e0e28a485c 100644 --- a/testsuite/gtk/defaultvalue.c +++ b/testsuite/gtk/defaultvalue.c @@ -363,9 +363,12 @@ G_GNUC_END_IGNORE_DEPRECATIONS continue; if (g_test_verbose ()) - g_print ("Property %s.%s\n", - g_type_name (pspec->owner_type), - pspec->name); + { + g_print ("Property %s:%s\n", + g_type_name (pspec->owner_type), + pspec->name); + } + g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec)); g_object_get_property (instance, pspec->name, &value); check_property ("Property", pspec, &value);